home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / macf / mfre.dir / 00264.ls < prev    next >
Encoding:
Text File  |  1995-10-10  |  354 b   |  20 lines

  1. on enterFrame
  2.   repeat with x = 3 to 7
  3.     if rollOver(x) = 0 then
  4.       puppetSprite(x, 1)
  5.       set the visible of sprite x to 0
  6.       puppetSprite(x, 0)
  7.     end if
  8.   end repeat
  9. end
  10.  
  11. on exitFrame
  12.   repeat with x = 13 to 18
  13.     put the visible of sprite x
  14.     puppetSprite(x, 0)
  15.   end repeat
  16.   playmovn3Q()
  17.   puppetSound("OPEN.AIF")
  18.   updateStage()
  19. end
  20.